notebook.community
Edit and run
Type some text here...
I want to compute the equation $\sum_{i=0}^{10} i * 2$:
In [3]: res = 0 for i in range(11): res = res + i * 4 print(res)
res = 0 for i in range(11): res = res + i * 4 print(res)
220
In [ ]: